From 12ccf554cc3c355bbb5402b18d15f52b73f58f67 Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Tue, 13 Aug 2002 19:12:30 +0000 Subject: [PATCH] (Funencodable_char_position): Lisp_Object/int mixup. --- src/coding.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/coding.c b/src/coding.c index 7f9f5171b9e..fd0d36e4241 100644 --- a/src/coding.c +++ b/src/coding.c @@ -6619,7 +6619,7 @@ to the string. */) Lisp_Object args[2]; args[0] = unencodable_char_position (safe_chars, from, p, GPT_ADDR, n); - n -= Flength (args[0]); + n -= XINT (Flength (args[0])); if (n <= 0) positions = args[0]; else -- 2.30.2